最近使用laravel ,發現遇到一行就退出的問題,發現原來是php 7.3 的問題… 詳細資源請參考:https://learnku.com/laravel/t/21165
解決方案
建立 ~/.config/psysh/config.php
這個檔案
然後在這個檔案裡面寫道
<?php
return [
'usePcntl' => false,
];
之後就解決了這個一行就退出的問題囉~
Want to be a better Coder
最近使用laravel ,發現遇到一行就退出的問題,發現原來是php 7.3 的問題… 詳細資源請參考:https://learnku.com/laravel/t/21165
建立 ~/.config/psysh/config.php
這個檔案
然後在這個檔案裡面寫道
<?php
return [
'usePcntl' => false,
];
之後就解決了這個一行就退出的問題囉~