路径出错,少了/code 这样写:
$filename = '/data/webroot/usercode/code/resource/test.txt';
$content=file_get_contents($filename);
echo $content;
$filename = '/data/webroot/usercode/code/resource/test.txt';
$content=file_get_contents($filename);
echo $content;
2015-06-19
( ) 捕获性分组,取得的值会放入$match数组,$match[0]始终是匹配的结果,所以无论多少个( )捕获性分组,都是从1开始算,从左往右计数。
[ ]非捕获性分组,匹配的结果不会被存放如$match数组。
[ ]非捕获性分组,匹配的结果不会被存放如$match数组。
2015-06-18
<?php
//在这里设置name的session值为jobs
session_start();
$_SESSION['jobs'] = name();
echo $_SESSION['name'];
//在这里设置name的session值为jobs
session_start();
$_SESSION['jobs'] = name();
echo $_SESSION['name'];
2015-06-14