Heim >Backend-Entwicklung >PHP-Tutorial >ThinkPHP323自定义函数库

ThinkPHP323自定义函数库

WBOY
WBOYOriginal
2016-07-29 08:59:211326Durchsuche

由于ThinkPHP以前的版本自定义函数库与目前3.2.3版本自定义函数库的方式不一致,会报错

:(
Call to undefined function Home\Controller\show()
错误位置
FILE: D:\php_demo\wxtest\Application\Home\Controller\IndexController.class.php  LINE: 11
ThinkPHP3.2.3 { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]

我自定义的函数为:

<?php function show()
{
    echo "hello world<br/>";
}
以前的版本好像是定义在在Application/Common/common.php下的,但3.2.3版本不行,正确的做法是

ThinkPHP323自定义函数库

定义路径为:Common/Common/function.php而不是common.php和functions.php

调用

ThinkPHP323自定义函数库

结果:

ThinkPHP323自定义函数库

以上就介绍了ThinkPHP323自定义函数库,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:curl参数列表Nächster Artikel:php 变量的可变性