Quote:
Originally Posted by brandondrury
I'm not sure if I did something wrong or not, but it's not working. The text isn't showing up and I'm getting the following errors.
Warning: array_keys() [function.array-keys]: The first argument should be an array in \includes\class_postbit.php(296) : eval()'d code on line 15
Warning: array_values() [function.array-values]: The argument should be an array in \includes\class_postbit.php(296) : eval()'d code on line 15
Warning: array_keys() [function.array-keys]: The first argument should be an array in \includes\class_postbit.php(296) : eval()'d code on line 23
Warning: array_values() [function.array-values]: The argument should be an array in \includes\class_postbit.php(296) : eval()'d code on line 23
Warning: preg_replace() [function.preg-replace]: Empty regular expression in \includes\class_postbit.php(296) : eval()'d code on line 23
I'm using 3.6.8 on a local Xampp server.
Brandon
Brandon
|
I know what the problem you are having is.
It is simply that you need to put a comma after the single quote if there is going to be ANOTHER thing to censor after it.
In other words the comma should be after each one with the exception of the last one
so it SHOULD look like this
PHP Code:
return(array(
'StringIWantToReplaceFrom1' => 'StringIWantToReplaceInto1',
'StringIWantToReplaceFrom2' => 'StringIWantToReplaceInto2',
'StringIWantToReplaceFrom3' => 'StringIWantToReplaceInto3',
'StringIWantToReplaceFrom4' => 'StringIWantToReplaceInto4',
'StringIWantToReplaceFrom5' => 'StringIWantToReplaceInto5'
));