- 分享
- 0
- 人气
- 0
- 主题
- 2
- 帖子
- 45
- UID
- 82425
- 积分
- 39
- 阅读权限
- 11
- 注册时间
- 2007-6-16
- 最后登录
- 2012-2-15
- 在线时间
- 126 小时
|
本帖最后由 alanlai12345 于 2010-10-30 01:20 AM 编辑
weeming21 是教你先在自己電腦上安裝 server 以支援 php,這样你所輸入的 php 才能够運行
tomato兄,有些问题,
请问get_content之后,我们必须把拿到的内容换成其它格式才能搜索吗?从FTP里,也没有看到新的文件。。。
请问preg_match function里,如果我们要match nestle的股价的话,是不是要去match这个才能拿到股价?- <span id="yfs_l10_4707.kl">
复制代码
"The Preg_Match PHP function is used to search a string, and return a 1 or 0. If the search was successful a 1 will be returned, and if it was not found a 0 will be returned"
*p/s:已经get到content和用echo证实了得到的content。但是得到的是整个网页的content...
- <?php
- $homepage = file_get_contents("http://finance.yahoo.com/q/ta?s=4707.KL+Basic+Tech.+Analysis&t=3m") ;
- if ($homepage === false)
- { echo "content not found";
- }
- else {preg_match("/yfs_l10_4707/", $homepage)
- echo $homepage;
- }
复制代码 |
|