|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2019-08-17 02:41 UTC] alexey at kopytko dot com
Description:
------------
It appears adding a strict types declaration makes PHPDBG drop all what it's doing and stop. E.g. consider this example without strict types:
$ cat example.php
<?php
echo "OK!\n";
$ cat example.php | phpdbg -qrrs=
OK!
And now the same example with strict types:
$ cat example2.php
<?php
declare(strict_types=1);
echo "OK!\n";
$ cat example2.php | phpdbg -qrrs=
[Nothing to execute!]
$ phpdbg --version
phpdbg 0.5.0 (built: Aug 7 2019 09:50:45)
PHP 7.3.8-1, Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.8, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.8-1, Copyright (c) 1999-2018, by Zend Technologies
with Xdebug v2.7.0RC2, Copyright (c) 2002-2019, by Derick Rethans
I've seen the same issue in PHP 7.4-beta.
Test script:
---------------
<?php
declare(strict_types=1);
echo "OK!\n";
Expected result:
----------------
OK!
Actual result:
--------------
[Nothing to execute!]
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 18 16:00:01 2025 UTC |
I can still reproduce: $ cat example2.php | phpdbg -qrrs= [Nothing to execute!] $ phpdbg --version phpdbg 7.4.15 (built: Feb 20 2021 09:45:56) PHP 7.4.15, Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.15, Copyright (c), by Zend Technologies I don't see anything looking like a fix for a changelog for 7.4.16