即時嘗試調用另一個函數內的函數。基於他們說的一些研究使用php調用函數中的另一個函數
$this->
應該工作。但它給了我
Fatal error: Using $this when not in object context
function addstring($input, $addition_string , $position) {
$output = substr_replace($input, $addition_string, $position, 0);
return $output;
}
function test($astring) {
$output2 = $this->addstring($astring, 'asd', 1);
}
查看我的代碼的其餘部分:
錯誤:
Fatal error: Using $this when not in object context in BLA.php on line 48
*「來查看我的代碼的其餘部分」 * ---你有足夠的代表處點張貼。 –
只要刪除'$ this->' –
或更好的是,添加一個類。 – Brad