dump($arr);
array(10) {
[0] => array(21) {
["id"] => string(2) "88"
........省略.........
["pu_pic"] => string(74) "1507/p_5594a950e92577.jpg|1507/p_5594a957e23c6.jpg|1507/p_5594a9518888.jpg"
........省略.........
}
[1] => array(21) {
[0] => array(21) {
["id"] => string(2) "88"
........省略.........
["pu_pic"] => string(74) "1507/p_5594a950e1789.jpg|1507/p_4444a951e23c6.jpg|1507/p_5594a9544fb44.jpg"
........省略.........
}
[2] => array(21) {
[0] => array(21) {
["id"] => string(2) "88"
........省略.........
["pu_pic"] => string(74) "1507/p_5594a950e1789.jpg|1507/p_4444a951e23c6.jpg|1507/p_5594a9544fb44.jpg"
........省略.........
}
源码
循环改变$arr["pu_pic"]中的值
for($i=0;$i
{
$thumb=explode('|',$arr[i]['pu_pic']);
$arr[i]['pu_pic']=$thumb[0];
}
dump($thumb);
}
dump($thumb)为空值;
dump($arr); 中的值也没有改变
回复讨论(解决方案)
认真检查一下你的 $arr 数组
在你贴出的片段中,除 $arr[0] 是一维数组外,其他的都是二维数组
你的代码是按 $arr[n] 是一维数组设计的,显然除了 $arr[0] 以外都不会进入修改代码的
认真检查一下你的 $arr 数组
在你贴出的片段中,除 $arr[0] 是一维数组外,其他的都是二维数组
你的代码是按 $arr[n] 是一维数组设计的,显然除了 $arr[0] 以外都不会进入修改代码的
我片段中的数组是贴错了。不好意思!
整个数组$arr是一个二维数组
array(10) {
[0] => array(21) {
["id"] => string(2) "74"
["pu_bt"] => string(14) "ssssssssssssss"
["pu_sfzj"] => string(1) "1"
["pu_lx"] => string(1) "1"
["pu_xjy"] => string(1) "0"
["pu_xjyb"] => string(0) ""
["pu_mj"] => string(2) "12"
["pu_zj"] => string(4) "3000"
["pu_qu"] => string(6) "天河"
["pu_qub"] => string(6) "车陂"
["pu_dz"] => string(0) ""
["pu_dh"] => string(7) "5555555"
["pu_lxr"] => string(0) ""
["pu_sm"] => string(0) ""
["pu_gk"] => string(0) ""
["pu_pic"] => string(74) "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"
["puphoto1"] => string(0) ""
["puphoto2"] => string(0) ""
["puphoto3"] => string(0) ""
["thumburl"] => string(0) ""
["pu_time"] => string(10) "1435909646"
}
[1] => array(21) {
["id"] => string(2) "60"
["pu_bt"] => string(69) "非中介真实可靠!白云区广花路大型KTV酒吧转让出售"
["pu_sfzj"] => string(1) "1"
["pu_lx"] => string(1) "3"
["pu_xjy"] => string(3) "127"
["pu_xjyb"] => string(0) ""
["pu_mj"] => string(1) "4"
["pu_zj"] => string(5) "78000"
["pu_qu"] => string(1) "5"
["pu_qub"] => string(6) "广花"
["pu_dz"] => string(15) "广花大马路"
["pu_dh"] => string(11) "13660073733"
["pu_lxr"] => string(6) "阿娇"
["pu_sm"] => string(0) ""
["pu_gk"] => string(267) "白云区广花路现在有一处2600平方米营利中酒吧,证照齐全,内有大型KTV包房45间,加酒吧大厅,客源稳定,含路边带租约商铺7间,还有10年租期,现因老板全家移民,如有意者请电话联系,可前来考察。"
["pu_pic"] => string(74) "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"
["puphoto1"] => string(0) ""
["puphoto2"] => string(0) ""
["puphoto3"] => string(0) ""
["thumburl"] => string(0) ""
["pu_time"] => string(10) "1434629313"
}
$arr = array( array( "pu_pic" => "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"), array( "pu_pic" => "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"),);for($i=0; $i<count($arr); $i++) { if(strlen($arr[$i]['pu_pic']) > 30) { $thumb = explode('|', $arr[$i]['pu_pic']); $arr[$i]['pu_pic'] = $thumb[0]; }}print_r($arr);
Array( [0] => Array ( [pu_pic] => 1507/p_55963e0e9685b.jpg ) [1] => Array ( [pu_pic] => 1507/p_55963e0e9685b.jpg ))
没有问题呀
$arr = array( array( "pu_pic" => "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"), array( "pu_pic" => "1507/p_55963e0e9685b.jpg|1507/p_55963e0eb388d.jpg|1507/p_55963e0ece755.jpg"),);for($i=0; $i<count($arr); $i++) { if(strlen($arr[$i]['pu_pic']) > 30) { $thumb = explode('|', $arr[$i]['pu_pic']); $arr[$i]['pu_pic'] = $thumb[0]; }}print_r($arr);
Array( [0] => Array ( [pu_pic] => 1507/p_55963e0e9685b.jpg ) [1] => Array ( [pu_pic] => 1507/p_55963e0e9685b.jpg ))
没有问题呀
感谢!问题解决了。通过把您的代码和我写的代码,逐行对比,发现是我粗心大意造成的。把 【 $i 】写成了【 i 】

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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' =>

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.

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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


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

Zend Studio 13.0.1
Powerful PHP integrated development environment

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

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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.
