PHP 8.5.0 Alpha 1 available for testing

Voting

: min(five, three)?
(Example: nine)

The Note You're Voting On

Stuart Eve
19 years ago
I dunno if anyone else might find this useful, but when I was trying to use the passthru() command on Suse9.3 I was having no success with the command:

$command = 'gdal_translate blahahahaha';

passthru($command);

It only worked once I put:

$command = '/usr/bin/local/gdal_translate blalalala';

passthru($command);

<< Back to user notes page

To Top