search
HomeBackend DevelopmentPHP TutorialFatal error: Call to undefined function_PHP教程
Fatal error: Call to undefined function_PHP教程Jul 14, 2016 am 10:08 AM
errorfatalfunctionphpundefinedonedeal withcommonmistake

Fatal Errors in PHP Common Error Handling (1)----Function is not defined

1. Error type: PHP fatal error
Error type: PHP Fatal error
Fatal error: Call to undefined function (a) in (b) on line (c)
2. Error description:
This error report indicates that you are trying to call an undefined function, where
a---- represents an undefined function name;
b----The path where this script appears;
c----The line number where an undefined function is attempted to be called.
d----The line number when the function is defined for the second time.
3. Reasons and solutions:
Reason 1: You did not declare the function. For example, call the following function directly
myFunction();// There is no such function here
The results are as follows
Fatal error:Call to undefinedfunction myFunction()in(path) on line 1
Solution:
Check carefully whether this function is declared in your program.
Cause 2: The name you use when declaring the function is different from the name you use when calling it, such as
function myFunction(){// do something}myFuntion();// There is one less letter C
Solution: This is the most common mistake that many beginners make. Sometimes, because of underwriting, overwriting, or a wrong letter, it cannot be checked for a long time.
Cause 3: The error occurred when you called the new version of PHP built-in functions under the old version of PHP. Because this PHP built-in function does not exist at all in your old version. For example, you call mime_content_type()
in an old version of PHP
Fatal error:Call to undefinedfunction mime_content_type()
Solution: Open the PHP manual and carefully check which versions of PHP the built-in functions you are using are applicable to. Detailed version restrictions are noted for each built-in function in the PHP manual. For example (PHP 4 >= 4.3.0, PHP 5). Therefore, the solution is to upgrade your PHP version, or change to other built-in functions of the same type.
Cause 4: Your calling code for the function is written in a file different from the function declaration. For example, you wrote code like this in a.php file
myFunction();
And your function declaration is in b.php
function myFunction(){// do something}
Solution: This situation usually happens to PHP beginners. They forget that PHP does not automatically associate or reference files when calling functions. In other words, in the above situation, a.php and b.php will not have any relationship at all. At this time you need to use functions such as include() to associate the two.
Reason 5: Your calling code for the function is written in a file different from the function declaration, and you also introduced the file. But your function calling code is before the import file code. For example, you perform function calls in a.php and declare functions in b.php
a.php code
myFunction();include('b.php');
b.php code
function myFunction(){ echo '123';}
Solution: Like the above code, an error will be reported when executed. Because PHP cannot find the declaration of the function when executing the function call. Therefore, never write function calls before the function declaration file is introduced. Of course, if you are in the same php file, you can write the calling function before the function declaration.
Reason 6: You use the same name twice in a row to define a function, such as
function myFunction(){}
function myFunction(){}
The results are as follows
Fatal error:Cannot redeclare myfunction()(previously declared in(path):2)in(path) on line 1
Solution:
Find the already declared function and see what needs caused you to define it again. If you simply forgot that it was defined before, just delete one of the declarations. Of course, your situation may be complicated. For example, your script files are arranged in an extremely confusing manner, and you may use a large number of include() and other functions, which will make it difficult for you to sort out your ideas from the confusing code.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477759.htmlTechArticleFATAL Errors in PHP Common Error Handling (1)----Function is not defined 1. Error type: PHP fatal ErrorError type: PHP Fatal error Fatal error: Call to undefined function (a) in (b) on...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
win10打开游戏fatal error怎么办?win10打开游戏fatal error怎么办?Feb 09, 2024 pm 12:54 PM

win10打开游戏fatalerror怎么办?我们在运行软件或者是游戏的时候会出现提示fatalerror错误怎么办?下面就让本站来为用户们来仔细的介绍一下win10打开游戏fatalerror的处理办法吧。win10打开游戏fatalerror怎么办?方法一:游戏客户端存在了问题,例如文件的损坏或者使用了一些破解补丁,都会导致fatalerror错误的出现,大家可以重新下载游戏。方法二:电脑内存太小也会导致fatalerror错误的出现,如果是物理内存足够的话,那么可以尝试设置一下系统的虚拟内

PHP Fatal error: Call to undefined method PDO::prepare() in的解决方法PHP Fatal error: Call to undefined method PDO::prepare() in的解决方法Jun 22, 2023 pm 06:40 PM

PHP作为一种流行的Web开发语言,已经被使用了很长时间。PHP中集成的PDO(PHP数据对象)类是我们在开发Web应用程序过程中与数据库进行交互的一种常用方法。但是,一些PHP开发者经常遇到的问题是,当使用PDO类与数据库进行交互时,他们会收到这样的错误:PHPFatalerror:CalltoundefinedmethodPDO::prep

解决C++代码中出现的“error: incomplete type is not allowed”问题解决C++代码中出现的“error: incomplete type is not allowed”问题Aug 26, 2023 pm 08:54 PM

解决C++代码中出现的“error:incompletetypeisnotallowed”问题在C++的编程过程中,有时候会遇到一些编译错误,其中一个常见的错误是“error:incompletetypeisnotallowed”。这个错误通常是由于在使用不完整的类型进行操作时引起的。本文将介绍这个错误的原因,并提供几种解决方法。首先,我

在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?Jun 24, 2023 pm 05:33 PM

在Vue应用中使用axios是十分常见的,axios是一种基于Promise的HTTP客户端,可以用于浏览器和Node.js。在开发过程中,有时会出现“Uncaught(inpromise)Error:Requestfailedwithstatuscode500”的错误提示,对于开发者来说,这个错误提示可能有些难以理解和解决。本文将会探讨这

最终幻想7fatal error怎么解决最终幻想7fatal error怎么解决Mar 07, 2024 pm 04:40 PM

玩家在最终幻想7中进行游戏时,有很多玩家遇到了fatalerror的问题不知道怎么解决,通常是关于内存不能读取的问题,建议玩家尝试重装游戏解决。最终幻想7fatalerror怎么解决1、重装游戏游戏客户端问题,如文件损坏,不完整,使用了一些破解补丁都会导致致命错误的出现,建议重装游戏。2、把所有文件属性的只读去掉某些文件属性不该是只读而设置成了只读,把所有文件属性的只读去掉就行了,比如一款游戏不能玩,那么右键点击该游戏的安装文件夹,取消只读属性。3、设置虚拟内存可能是由于内存太小,如果物理内存足

0271:real time clock error开不开机怎么办0271:real time clock error开不开机怎么办Mar 13, 2023 am 11:30 AM

“0271:real time clock error”开不开机的解决办法:1、按一下F1,在出现的界面中,将选项栏转到第三项“Date/Time”;2、将系统时间手动修改成现在的时间;3、按F10,在弹出的对话框中,选择yes;4、重新打开笔记本即可正常开机。

解决C++代码中出现的“error: expected initializer before 'datatype'”问题解决C++代码中出现的“error: expected initializer before 'datatype'”问题Aug 25, 2023 pm 01:24 PM

解决C++代码中出现的“error:expectedinitializerbefore'datatype'”问题在C++编程中,有时候我们在编写代码时会遇到一些编译错误,其中一种常见的错误是“error:expectedinitializerbefore'datatype'”。这个错误通常在变量声明或函数定义中发生,可能导致程序无法正确编译或

如何解决PHP Warning: fopen(): failed to open stream: No such file or directory如何解决PHP Warning: fopen(): failed to open stream: No such file or directoryAug 19, 2023 am 10:44 AM

如何解决PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory在使用PHP开发过程中,我们经常会遇到一些文件操作的问题,其中之一就是"PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.