php数据库存储的问题
本人小白,刚开始学。。。
$query="insert into movie (rating) values ('$num3')";
$result=mysql_query($query);
单独的打印出$num3得到的结果是9.2,但这样存到数据库里为什么就变成0了?字段rating是float类型的
还有$query="insert into movie (title) values ('$m[0][$i+5]')"; 单独的打印出$m[0][$i+5]是asdfg
但存入数据库就变成 Array[1+5] 这个了。 字段title是char类型的
是我的语句有问题吗
回复讨论(解决方案)
$query="insert into movie (rating) values ('".$num3."')";$query="insert into movie (title) values ('".$m[0][$i+5]."')";
PHP code?12$query="insert into movie (rating) values ('".$num3."')";$query="insert into movie (title) values ('".$m[0][$i+5]."')";
还是不行啊。。。
$query="insert into movie (rating) values ('$num3')";
这个不会有问题,可写作
$query="insert into movie (rating) values ($num3)";
看看
$query="insert into movie (title) values ('$m[0][$i+5]')";
应写作
$query="insert into movie (title) values ('{$m[0][$i+5]}')";
$query="insert into movie (rating) values ('$num3')";
这个不会有问题,可写作
$query="insert into movie (rating) values ($num3)";
看看
$query="insert into movie (title) values ('$m[0][$i+5]')";
……
恩恩 多谢啦 第二个是写错了
不过才发现我犯了个更重大的错误 我的那几个变量都是通过正则表达式抓取到的页面内容,打印出来是那几个字符,但真实内容还包含的有标签,所以第一个无论如何也存不进去。。。。
$query="insert into movie (rating) values ('$num3')";
这个不会有问题,可写作
$query="insert into movie (rating) values ($num3)";
看看
$query="insert into movie (title) values ('$m[0][$i+5]')";
……
不过 如何从一串字符串
9.2
单独的提取出中间的9.2 并把它转化成float类型a
$s =<<< TXT<font face="Arial, Helvetica, sans-serif" size="-1">9.2</font>TXT;preg_match_all('/>([.\d]+)</', $s, $r);print_r($r[1]);
(
[0] => 9.2
)
PHP code?12345$s =<<< TXT<font face="Arial, Helvetica, sans-serif" size="-1">9.2</font>TXT;preg_match_all('/>([.\d]+)</', $s, $r);print_r($r[1]);Array
(
[0] => 9.2
)
啊啊 谢谢谢谢,再弱弱的问一句 我要是提取这个呢
Redemption (1994)
提取Redemption 怎么用正则表达式才能不包括两边的标签啊
$s =<<< TXT<font face="Arial, Helvetica, sans-serif" size="-1"><a href="/title/tt0111161/">Redemption</a> (1994)</font>TXT;preg_match_all('#(?<=a)[^>]+>([^<]+)</a#', $s, $r);print_r($r[1]);
(
[0] => Redemption
)
不知道怎么感谢了。。。看来我还是得好好学学,好人一生平安。。。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
