在 MySql 中使用 PHP 定义的函数

发布于 2024-11-07 14:39:53 字数 35 浏览 0 评论 0原文

有没有办法在mysql中使用PHP中定义的函数?请帮忙。

Is there a way of using functions defined in PHP in mysql? Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别在捏我脸啦 2024-11-14 14:39:53

是的,有一种方法可以实现您正在谈论的事情。它们被称为“存储过程”,您可以使用 PHP 创建一个存储过程,然后将其存储在 MySQL 服务器上,这样函数的执行将由 MySQL 服务器而不是 PHP 引擎负责。

以下是有关存储过程的 MySQL 文档的链接:

存储过程 ,

另一篇关于存储过程的文章 ,

使用存储过程

我不知道这是否回答了您的问题,但是我想我会尝试一下。

编辑:查看我对 Tudor Constantin 答案的评论,您可以使用 PHP MySQL 查询将存储过程写入数据库!存储过程被放置在 mysql 服务器上的“proc”表中的 mysql 数据库中。

小时

Yes there is a way to accomplish what you are talking about. They are called "Stored Procedures" and you can create one using PHP and then store it on MySQL Server, this way the execution of the function will my the MySQL server's responsibility instead of the PHP Engine.

Here is a link to the MySQL documentation on Stored Procedures:

Stored Procedures ,

Another article on Stored Procedures ,

Using Stored Procedures ,

I don't know if this answers your question, but I figured I would give it a shot.

EDIT: Check out my comments on Tudor Constantin's answer, you CAN write stored procedures to the database using a PHP MySQL query! The stored procedures get placed in the mysql database in the "proc" table on the mysql server.

h

丢了幸福的猪 2024-11-14 14:39:53

不,没有。有一些相同的功能,但是 SQL(MySQL 使用的语言)和 PHP 是两种不同的技术/平台/软件/编程范例/等,并且它们具有完全不同的编程指令集/原理。

相反,在 PostgreSQL 中,您可以用 PHP 编写存储过程

No, there isn't. There are some equivalent functions, but SQL (the language used by MySQL) and PHP are 2 different technologies/platforms/softwares/programming paradigms/etc and they have totally different set of instructions/principles of programming.

Instead in PostgreSQL you can write stored procedures in PHP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文