这是我在 php 中的代码,用于调用我在 MySQL 中的存储过程:
$result2 = mysql_query("call cuotes_sp('$number',@date)");
$number
是要提供给 SP 的变量的值,@date
是从 SP 返回的变量。
问题: 如何获取@date
php 中的值?
这是我在 php 中的代码,用于调用我在 MySQL 中的存储过程:
$result2 = mysql_query("call cuotes_sp('$number',@date)");
$number
是要提供给 SP 的变量的值,@date
是从 SP 返回的变量。
问题: 如何获取@date
php 中的值?