前提・実現したいこと
print_rの結果を出力させたい。
発生している問題・エラーメッセージ
ターミナルで実行すると、ほしい結果が出力されず、rootの前に6がついて6rootに かわる。enterキーをおすともとにもどる
phpのコード <?php $lists =[1,2,3]; $text =[]; foreach($lists as $list){ $text=$list*2; } print_r($text); ターミナルの実行結果 [11-Mar-2021 16:34:28 Asia/Tokyo] Xdebug: [Step Debug] Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port) :-( 6root@ebce1f28011a:/var/www/html# php sample.php 6root@ebce1f28011a:/var/www/html# php sample.php 6root@ebce1f28011a:/var/www/html# php sample.php 6root@ebce1f28011a:/var/www/html# root@ebce1f28011a:/var/www/html#
試したこと
・6rootなどで検索。
・$lists =[1,2,3];の中の数字を一つへらして、
$lists =[1,2]にして実行すると
4root@ebce1f28011a:/var/www/html#
と実行結果が出力された。
補足情報(FW/ツールのバージョンなど)
Ubuntu Ubuntu 20.04.1
windows 10
PHP 7.4.16
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/11 08:30
2021/03/11 08:37
2021/03/11 08:46
2021/03/11 10:00
2021/03/11 10:50