Search Results

2
votes
4answers
625 views

What is the best way to escape Python strings in PHP?

I have a PHP application which needs to output a python script, more specifically a bunch of variable assignment statements, eg. subject_prefix = 'This String From User Input' msg_f …
3
votes
6answers
1k views

Does Perl have PHP-like dynamic variables?

Hello, In PHP, I can write: $vname = 'phone'; $$vname = '555-1234'; print $phone; ... And the script will output "555-1234". Is there any equivalen …
0
votes

How to get proper line number when using trigger_error in PHP?

Two options, neither one are particularly palatable: Override Have test() provide __LINE__ in the arguments (eg. "test(__LINE__)", and give the argument t …