질문:
Codeigniter에서 폴링 컨트롤러에서 results_view로의 $data라는 변수입니다. 그런데 정의되지 않은 변수 오류가 발생했습니다. 제가 사용하고 있는 코드는 다음과 같습니다.
<code class="php">// ... public function results() { // ... $data = "hello"; $this->load->view('results_view', $data); }</code>
답변:
Codeigniter에서 컨트롤러에서 뷰로 데이터를 전달할 때 $data는 배열이어야 합니다. 또는 객체.
이 문제를 해결하려면 $data를 배열:
<code class="php">$data = array( 'hello' => 'hello', );</code>
또는 객체:
<code class="php">$data = (object) array( 'hello' => 'hello', );</code>
그런 다음 results_view.php에서 변환하세요. , 다음과 같이 데이터에 액세스합니다.
<code class="php">echo $data->hello;</code>
위 내용은 CodeIgniter 컨트롤러에서 뷰로 데이터를 전달하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!