Lorsque j'ai essayé d'utiliser les opérateurs curl et pipe pour le transmettre directement à php afin d'exécuter l'installation téléchargée, j'ai eu une erreur :
$ curl -s https://getcomposer.org/installer | php #!/usr/bin/env php All settings correct for using Composer Downloading... The download is corrupt, retrying... Downloading... The download is corrupt, retrying... Downloading... The download is corrupt (internal corruption of phar "/work/doc/composer.phar" (truncated entry)), aborting.
Ensuite, j'ai téléchargé l'installation manuellement :
$ curl -s https://getcomposer.org/installer > composer
Ensuite, j'ai tracé manuellement l'endroit où l'erreur s'est produite, puis j'ai tracé une instruction try...catch :
...... try { // test the phar validity echo $file; $phar = new Phar($file); // free the variable to unlock the file unset($phar); break; } catch (Exception $e) { if (!$e instanceof UnexpectedValueException && !$e instanceof PharException) { throw $e; } unlink($file); if ($retries) { if (!$quiet) { out('The download is corrupt, retrying...', 'error'); } } else { out('The download is corrupt ('.$e->getMessage().'), aborting.', 'error'); exit(1); } } ......
Une erreur s'est produite lors de l'utilisation du nouveau Phar, j'ai donc retiré ce code et l'ai exécuté séparément. PHP a signalé cette erreur :
.$ cat test.php <?php $file = '/work/doc/composer.phar'; $phar = new Phar($file); unset($phar);
Ensuite, exécutez ce test.php et voyez cette erreur :
$ php test.php PHP Fatal error: Uncaught exception 'UnexpectedValueException' with message 'internal corruption of phar "/work/doc/composer.phar" (__HALT_COMPILER(); not found)' in /work/doc/test.php:5 Stack trace: #0 /work/doc/test.php(5): Phar->__construct('/work/doc/compo...') #1 {main} thrown in /work/doc/test.php on line 5 Fatal error: Uncaught exception 'UnexpectedValueException' with message 'internal corruption of phar "/work/doc/composer.phar" (__HALT_COMPILER(); not found)' in /work/doc/test.php:5 Stack trace: #0 /work/doc/test.php(5): Phar->__construct('/work/doc/compo...') #1 {main} thrown in /work/doc/test.php on line 5
Mais j'ai déjà un script téléchargé nommé composer.phar Même si j'ai nommé test.php composer.phar, ça ne marche pas. Voici les paramètres de compilation de mon php :
../configure --prefix=/opt/php/default --with-config-file-path=/opt/php/default/etc --with-mysql --with-mysqli --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-ldap --with-ldap-sasl --with-libdir=lib64 --with-xmlrpc --enable-zip --enable-soap --with-pear --enable-pdo --with-pdo-mysql --with-gettext --enable-exif --enable-wddx --enable-calendar --enable-ftp --enable-dba --enable-sysvmsg --enable-sysvshm --enable-debug --enable-maintainer-zts --with-pcre-regex --enable-gd-jis-conv --with-apxs2=/opt/apache/default/bin/apxs
Exécutez ceci,
Vous devriez pouvoir voir que cette option est "expérimentale", et il n'y a pas de description officielle de curl en tant que wrapper dans http://us.php.net/manual/en/wrappers....
De plus, cela entraînera en effet un mauvais fonctionnement de fopen.
Supprimez le paramètre --with-curlwrappers lors de la compilation et le problème est résolu.