A
Anonymous
Guest
I have an array with strings in it
now I want to update the array with attaching single quotes to it
eg
$ar[0] = val1;
$ar[1] = val1;
change to
$ar[0] = 'val1';
$ar[1] = 'val1';
I don't remember what array function can help change the contents of the array! :?: :!:
now I want to update the array with attaching single quotes to it
eg
$ar[0] = val1;
$ar[1] = val1;
change to
$ar[0] = 'val1';
$ar[1] = 'val1';
I don't remember what array function can help change the contents of the array! :?: :!: