str_replace()错误的参数计数错误

时间:2011-05-10 11:57:02

标签: php string str-replace

<?php
$kw = $_POST["kw"];
$kw= str_replace("*","%",$kw,$count);
if($count > 1) 
{
echo "not supported";
exit;
}
...
?>

我收到此警告“str_replace()错误的参数计数错误”。

我哪里错了?

感谢。

2 个答案:

答案 0 :(得分:6)

您使用的是哪个版本的PHP?我怀疑&lt; 5.0.0

来自http://php.net/manual/en/function.str-replace.php

  

5.0.0添加了count参数。

答案 1 :(得分:-2)

$kw= str_replace("*","%",$kw,&$count);