我正在尝试使用Request
&没有完整框架的Symfony2的Response
个组件。这是我的代码:
<?php
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
$r = Request::create( 'https://example.com', 'GET' );
$response = $r->getResponse();
$content = $response->getContent();
我收到了这个错误:
PHP致命错误:类'Symfony \ Component \ HttpFoundation \ Request' 在第6行的/root/billing/web/index.php中找不到
答案 0 :(得分:1)
您需要使用ClassLoader
组件自动加载您的课程,否则您将需要require()
课程文件。没有写自己的autoloader。
请参阅“命名约定和自动加载”部分of this document