我将函数plugins_url
的结果放入变量和passig到str_replace
但是会抛出错误:
Fatal error: Only variables can be passed by reference
我的代码:
$baseURL = plugins_url( "somefile.php", dirname(__FILE__) );
//This throws an error
$baseURL = str_replace( "something", "anotherthing", $baseURL, 1 );
如何更改该功能的响应?
答案 0 :(得分:1)
最后一个参数必须是变量
$count = 1;
$baseURL = str_replace( "something", "anotherthing", $baseURL, $count );