- 投稿日:
引数をスペース区切りで先頭から取り出すやつ。本質は配列操作だと思う
基本
shift 2
のようにするとシフト数を指定できる
while [ "$1" != "" ]
do
echo $1
shift
done
foo.sh abc de
を叩くと以下の出力が得られる
abc
de
- 投稿日:
環境
Windows 10
Env | Ver |
---|---|
PHP | 8.0.2 |
Xdebug | 3.0.2 |
php.ini
zend_extension="xdebug-3.0.2-8.0-vs16-nts-x86_64"
xdebug.start_with_request=yes
xdebug.mode=debug
settings.json
別になくてもデバッグは出来る
"php.validate.executablePath": "C:/path/to/php.exe",
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
}
]
}