Strange, are you sure it's 4.0.4 ??
The manual for array_shift() says it's supported from 4.0.0 .
Maybe try the alias array_pop() ?
otherwise there'll be other ways to strip the first part of the directory,
for example using regexp, try something like:
<?
ereg("^[^/]/(.*)$", dirname($PHP_SELF), $regs);
$c = explode("/", $regs[1]);
?>
On Wed, 09 Jan 2002 22:00:49 -0500, Gerard Samuel wrote:
>Hey all. Im putting together a script and Im having a couple people
>test it out.
>
>Here is a bit of code...
>
>$c = explode ('/', dirname($PHP_SELF));
>array_shift($c);
>
>It runs fine on my box, php 4.0.6, apache 1.3.22.
>
>On a box with php 4.0.4pl1, apache 1.3.20 it spits an error.
>Fatal error: Call to unsupported or undefined function array_shift() in
>file.php on line 15
>
>Where/Is there anything wrong with 4.0.4??
>
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]