本文整理汇总了PHP中stdClass::run方法的典型用法代码示例。如果您正苦于以下问题:PHP stdClass::run方法的具体用法?PHP stdClass::run怎么用?PHP stdClass::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stdClass
的用法示例。
在下文中一共展示了stdClass::run方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: funcWithGaps
*
* This method SHOULD be last
*/
public function funcWithGaps()
{
$this->func();
/**
* In end added gap
* This method should be last
*/
$this->func();
//double gap above
$this->func();
if (1 == 1) {
//one gap after bracket
$a = 1;
//gap below
}
$a = array('gap above and below');
//gap below
}
}
try {
$shell = new stdClass();
$shell->run();
} catch (My_Exception $e) {
echo 'ERROR: ' . $e->getMessage() . PHP_EOL;
} catch (Exception $e) {
echo $e . PHP_EOL;
}
$switch = $this->getRequest()->getGetParam('switch');
示例2: getResponse
/**
* Get Response.
*
* @param array $input Input (e.g: [0, 0, 0, 0, 0, 0, 0, 0, 0]).
* @return array
*/
public function getResponse(array $input)
{
$output = $this->neuralNetwork->run($input);
return $output;
}