重学PHP

作者: 林慕空 | 来源:发表于2018-06-06 10:10 被阅读0次

    Run your application:

    1. Change to the project directory
    2. Execute the php -S 127.0.0.1:8000 -t public command;
    3. Browse to the http://localhost:8000/ URL.
    
       Quit the server with CTRL-C.
       Run composer require server --dev for a better web server.
    

    Database Configuration

    • Modify your DATABASE_URL config in .env

    • Configure the driver (mysql) and
      server_version (5.7) in config/packages/doctrine.yaml

    How to test?

    • Write test cases in the tests/ folder
    • Run php bin/phpunit

    相关文章

      网友评论

          本文标题:重学PHP

          本文链接:https://www.haomeiwen.com/subject/hbavsftx.html