-6
votes
2answers
352 views
how to fix this regular expression non-greedy problem?
preg_match('/(.*?)see below[^,\.<]*/s',$xml,$match);
echo $match[0];
the ouput is,which I think the non-greedy matching is not working:
<?xml version …
-1
votes
3answers
216 views
php non-greedy regex problem
demo:
$str = 'bcs >Hello >If see below!';
$repstr = preg_replace('/>[A-Z0-9].*?see below[^,\.<]*/','',$str);
echo $repstr;
What I want this tiny progra …
0
votes
1answer
83 views
how to show image that are stored above Document_Root
I set the src attribute of img the way below but was not working :
src="/../files/filenamee"
the image is not shown.
How to do it correctly?
…
1
vote
3answers
118 views
rename not supporting multi-byte characters
If I write:
rename('php109.tmp','test.jpg');
then it's fine and working.
but if I change it into:
rename('php109.tmp','中文.jpg');
it'll report "No such file o …
0
votes
0answers
284 views
how to get file system encoding by php
not file encoding ,
but file system.
why I ask this is because that I find functions like rename,copy use the same encoding as
file system,And I don't know how to change th …
0
votes
1answer
60 views
Is it accurate enough to judge version by ETag and Last-Modified?
In fact I know it's not,
because sometimes a certain javascript file is wrongly loaded.
But I don't know what's wrong exactly.
We use the 2 header information to judge if a …
0
votes
5answers
105 views
php extension on windows xp
I've installed php on my xp, but failed to add an extension to mysql
Here is what I did in php.ini:
[PHP_MYSQL]
extension=php_mysql.dll
and there is such a …
0
votes
6answers
263 views
how to get rid of PHP notice here?
function t1()
{
echo 1;
}
function t2()
{
echo 2;
}
$funcs = array(t1,t2);
$length = count($funcs);
for($i=0;$i<$length;$i++)
{
$funcs[$i]();
}
when I execute th …
0
votes
4answers
358 views
1
vote
7answers
596 views
how to identify web crawlers of google/yahoo/msn by PHP?
AFAIK,
$_SERVER['REMOTE_HOST'] should end up with "google.com" or "yahoo.com".
but is it the most ensuring method?
any other way out?
…
0
votes
4answers
123 views
what’s the most easy-to-parse format for PHP?
In my PHP file,I'm reading out bulk of information using query like below:
SELECT GROUP_CONCAT(CONCAT('<comment><body><![CDATA[',body,']]></body>','<repl …
0
votes
2answers
109 views
how to combined these words in array with “ “ in PHP?
I want to combine the [word] part of each array with " ",the array structure as follows:
Array ( [0] => Array ( [word] => Hello [off] => 0 [len] => 5 [idf] => 4.02359 …
-3
votes
4answers
302 views
0
votes
3answers
93 views
how to read output of var_export into a variable in PHP?
the output is like below restored in a output.txt file:
array (
'IMType' => '1',
'Email' => 'test@gmail.com',
'SignupName' => 'test11',
'Password' => '11111',
…
0
votes
1answer
360 views
how to redirect STDOUT to a file in PHP?
The code below almost works, but it's not what I really meant:
ob_start();
echo 'xxx';
$contents = ob_get_contents();
ob_end_clean();
file_put_contents($file,$contents);
…
