本文介绍了警告:sprintf() [function.sprintf]:第 132 行/home/inrunitc/public_html/chek/chek.php 中的参数太少的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Warning: sprintf() [function.sprintf]: Too few arguments in /home/inrunitc/public_html/chek/chek.php on line 132
Query was empty

我是 PHP 和 mysql 的新手,我的表单中有 88 个字段 - 我该怎么办?

I am new to PHP and mysql and I have like 88 fields in my form - what should I do ?

推荐答案

如果你有类似的情况会发生这种情况

This happens if you have something like

$s = sprintf('%d %d %d', 4);

格式字符串中有三个占位符,但只有一个参数.

There are three placeholders in the format string but only one parameter.

这篇关于警告:sprintf() [function.sprintf]:第 132 行/home/inrunitc/public_html/chek/chek.php 中的参数太少的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 08:31