我是PHP的新手,请帮我拆分这个数组。我以前从未这样做过。
我只想在浏览器上显示<{3}} 没有 字符串(18)的值。
array(3) {
[7] => string(18)
"http://domain7.com"
[4] => string(18)
"http://domain4.com"
[3] => string(18)
"http://domain3.com"
}
答案 0 :(得分:1)
假设数组看起来像这样,一个简单的<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Image Showcase</title>
<link rel="stylesheet" type="text/css" href="imgShow.css"></link>
<script src="imgShow.js"></script>
</head>
<body>
<header>
<h1>Image Showcase</h1>
</header>
<img id="pics" src="http://allwebco-templates.com/support/picts/sample-image.jpg" alt="Forms" width="300px" height="200px" /></img>
<button id="bnext" type="button" onclick="nextPic()">Next</input>
<button id="bprev" type="button" onclick="prevPic()">Previous</input>
</body>
</html>
应该允许你输出网址
foreach loop
答案 1 :(得分:0)
不要使用直接var_dump()
来显示输出;您可以使用foreach()
或任何循环,foreach()
有以下内容 -
//lets say your array name is $array
// here $key will hold 7,4,3 and $values will hold your domains
foreach($array as $key=>$value)
{
echo $value.'<br>';
}