par
olivxii » 06 févr. 2011, 19:55
j'ai une erreur : Fatal error: Only variables can be passed by reference in /home/www/nexx.php on line 12
12 . exec($cmd, NULL, $retour);
<?php
require 'classes/config.php';
error_reporting(-1);
ini_set('display_errors', 1);
$base_path = installation_paths();
$convertor = $base_path . '/convertor.php';
$covertor_url = $config["site_base_url"].'/convertor.php';
$cmd = "curl -G $covertor_url > /dev/null &";
exec($cmd, NULL, $retour);
echo "retour : $retour";
?>
j'ai une erreur : Fatal error: Only variables can be passed by reference in /home/www/nexx.php on line 12
[b]12 .[/b] exec($cmd, NULL, $retour);
[php]
<?php
require 'classes/config.php';
error_reporting(-1);
ini_set('display_errors', 1);
$base_path = installation_paths();
$convertor = $base_path . '/convertor.php';
$covertor_url = $config["site_base_url"].'/convertor.php';
$cmd = "curl -G $covertor_url > /dev/null &";
exec($cmd, NULL, $retour);
echo "retour : $retour";
?>
[/php]