问题
I am trying to go trough tutorial of doctrine here is official website. And I got an error in Starting with the Product Entity part.
This is what I write to terminal: $ php create_product.php ORM
PHP Fatal error: Uncaught Error: Class 'product' not found in /home/vaclav/Server/vssk/VSSK/project/create_product.php:8
Stack trace: #0 {main}
thrown in /home/vaclav/Server/vssk/VSSK/project/create_product.php on line 8
回答1:
Solved with adding:
require_once 'patch_to_your_class/Product.php';
to create_product.php
.
来源:https://stackoverflow.com/questions/48529676/php-fatal-error-uncaught-error-class-not-found