我想在代码中使用类DB,我的代码在目录助手中使用此文件klasa.php (JazamierzamużyćklasyDB wkodziemójkodto plik klasa.php w katalogu helpers) 文件klasa.php
<?php
//namespace App\Helpers;
//use ...\Form;
namespace App\Http\Controllers;
use DB;
use App\Quotation;
class SomeClass
{
public static function SomeMethod()
{
print "<font color=red>Dobrze</font>";
}
public static function dodaj_staty($ip,$http_user_agent,$co_robil) {
//$system = $this->system_operacyjny($http_user_agent);
//$przegla = $this->przegladarka($http_user_agent);
$system = "tomi";
$przegla = "tomek";
$sql = 'INSERT INTO statystyki (aa, bb, cc,fff,gg,iii)
VALUES (?, ?, ?,?,?,?)';
$data = time();
$data1 = array($data, $system ,$przegla,$http_user_agent,$co_robil,$ip);
//on this line return error PHP Fatal error: Class 'App\\Helpers\\SomeClass' not found
\DB::insert($sql, $data1);
}
此函数调用文件 (tąfunkkjewywołujeplik)
$a = new \App\Helpers\SomeClass();
$a->dodaj_staty('d','dd','g');
你看到使用这些说明 (wywidzicieużyłemtakichinstrukcji)
namespace App\Http\Controllers;
use DB;
use App\Quotation;
答案 0 :(得分:0)
在这个应用程序本身使用登录,这使用mysql,它的工作正常,可能是因为不使用DB :: select指令。我更改了DB :: insert at $ ff = DB :: select的说明,而不是任何错误,但打印机如何变量$ ff然后看错误。