在我的控制器中,我创建了一个函数getFactorial
public static function getFactorial($num)
{
$fact = 1;
for($i = 1; $i <= $num ;$i++)
$fact = $fact * $i;
return $fact;
}
然后,我就像这样使用它
public function codingPuzzleProcess()
{
$word = strtoupper(Input::get('word'));
$length = strlen($word);
$max_value = ($length * 26);
$characters = str_split($word);
$num = 1 ;
$index = 1;
sort($characters);
foreach ( $characters as $character) {
$num += getFactorial($index) * $index;
$index ++;
}
return Redirect::to('/coding-puzzle')
->with('word', $word )
->with('num', $num )
->with('success','Submit successfully!');
}
出于某种原因,我不断收到此错误
Call to undefined function App\Http\Controllers\getFactorial()
有人可以教我如何解决此错误吗?
事先得到很多赞赏。
CodeController.php
<?php
namespace App\Http\Controllers;
use View, Input, Redirect;
class CodeController extends Controller {
public function codingPuzzle()
{
return View::make('codes.puzzle');
}
public static function getFactorial($num)
{
$fact = 1;
for($i = 1; $i <= $num ;$i++)
$fact = $fact * $i;
return $fact;
}
public function codingPuzzleProcess()
{
$word = strtoupper(Input::get('word'));
$length = strlen($word);
$max_value = ($length * 26);
$characters = str_split($word);
$num = 1 ;
$index = 1;
sort($characters);
foreach ( $characters as $character) {
$num += getFactorial($index) * $index;
$index ++;
}
return Redirect::to('/coding-puzzle')
->with('word', $word )
->with('num', $num )
->with('success','Submit successfully!');
}
}
答案 0 :(得分:7)
说你在static getFactorial
CodeController
函数
然后这就是你需要调用静态函数的方法,因为类中存在静态属性和方法,而不是使用类创建的对象。
CodeController::getFactorial($index);
----------------的更新强> ----------------
为了最好的练习,我认为您可以将这种功能放在一个单独的文件中,这样您就可以更轻松地进行维护。
做到这一点
在app
目录中创建一个文件夹并将其命名为lib
(您可以输入您喜欢的名称)。
此文件夹需要自动加载才能将app/lib
添加到composer.json
,如下所示。并运行composer dumpautoload
命令。
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
............
"app/lib"
]
},
然后lib
内的文件将自动加载。
然后在lib
内创建一个文件,我将其命名为helperFunctions.php
里面定义了这个函数。
if ( ! function_exists('getFactorial'))
{
/**
* return the factorial of a number
*
* @param $number
* @return string
*/
function getFactorial($date)
{
$fact = 1;
for($i = 1; $i <= $num ;$i++)
$fact = $fact * $i;
return $fact;
}
}
并在应用内的任意位置调用
$fatorial_value = getFactorial(225);
答案 1 :(得分:6)
如果它们在同一控制器类中,则为:
foreach ( $characters as $character) {
$num += $this->getFactorial($index) * $index;
$index ++;
}
否则,您需要创建该类的新实例,并调用该方法,即:
$controller = new MyController();
foreach ( $characters as $character) {
$num += $controller->getFactorial($index) * $index;
$index ++;
}