我为自己创建了一个小图书馆,我正在尝试将它自动加载到我的laravel项目中,它安装得很好,但每当我尝试使用该类时,它只是说它没有找到。
我已经检查了<?php
if($_SERVER['REQUEST_METHOD']=='GET'){
$id = $_GET['id'];
require_once('dbConnect.php');
$sql = "SELECT * FROM data WHERE description=?";
$stmt = mysqli_prepare($con,$sql);
$stmt->bind_param("s", $id);
$stmt->execute(); //originally I combined this and next line, it was incorrect
if ($result = $stmt->get_result()){
//originally I used wrong method below
while($row = $result->fetch_assoc()) {
$myArray[] = $row;
}
//uncomment below if you're sending response as json responese
//header('Content-Type: application/json');
echo json_encode($myArray);
}
$result->close();
中的所有类图文件,但它们似乎没有。{/ p>
这是我的liber.json:我的lib:
vendor/composer
我的文件结构是:
答案 0 :(得分:0)
这是type
中composer.json
的问题。我已将其更改为library
,并将其添加到自动加载类图。