Hi,
does anyone have a clue where to find a list of the status code, system() or passthru() return?
I get code 410 after executing a imagemagick function and do not have any idea what the system is trying to tell me!
Thanks
Originally posted by TomTom101 Hi, does anyone have a clue where to find a list of the status code, system() or passthru() return? I get code 410 after executing a imagemagick function and do not have any idea what the system is trying to tell me! Thanks
I think you'll be wanting to look at your ImageMagick documentation, as that would be where the error code is coming from.
From the manual system() is just like the C version of the function in that it executes the given command and outputs the result. If a variable is provided as the second argument, then the return status code of the executed command will be written to this variable. ... Returns the last line of the command output on success, and FALSE on failure.