新手请教一些问题
同一段程式码中,有些会跑,有些不会
<?php
include(\"LIB_parse.php\");
include(\"LIB_http.php\");
# download the page
$web_page = http_get ($target = \"http://www.nostarch.com\", $referer = \"\");
$title_incl = return_between($web_page['FILE'], \"<title>\", \"</title>\",
INCL);
$title_excl = return_between($web_page['FILE'], \"<title>\", \"</title>\",
EXCL);
echo \"title_incl =\" .$title_incl;
echo \"\n\";
echo \"title_excl =\" .$title_excl;
?>
其结果为
title_incl = title_excl =No Starch Press
问题有两个
第一 echo "\n"; 没有作用,应该要分行才对
第二 incl这一段没有做用出来,预其应该是要
title_incl = < title >No Starch Press< title>
title_excl =No Starch Press
请问是哪里出错了呢
我使用Eclipse Luna 的php套件。
然后安装appserv2.5.10
Apache 2.2.8
PHP 5.2.6
MySQL 5.0.51b
phpMyAdmin-2.10.3
照这样的情况来看,我猜有些指令会执行,有些不会,但很简单的echo "\n" 是没作用的
,这让我觉得很奇怪。
请问题哪里有问题呢?
拜托各位前辈解惑了