我运行一个简单的mysql查询并尝试从src列中获取,但我只想获取“ video#.mp4”部分-而不是整个值(请参见下图)
如果有人知道如何实现这一目标……我真的很感激!谢谢您的帮助!
代码:
$con=mysqli_connect("localhost","test","123","test");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql="SELECT id, title, src, type, poster_img FROM TABLE_NAME";
if ($result=mysqli_query($con,$sql))
{
$id = 0;
// Fetch one and one row
while ($row=mysqli_fetch_row($result))
{
// Show video#.mp4 here ///
echo '';
$id++;
}
// Free result set
mysqli_free_result($result);
}
mysqli_close($con);
答案 0 :(得分:1)
我建议您将quality
和video name
存储在2个不同的列中,因为这将有助于您进行搜索等。
在您的示例中,您可以使用json_decode
来获得所需的结果,但是同样,如果您在json
列中有有效的src
,它将可以正常工作。
示例:
$string = '[{"quality":"default","mp4":"video2.mp4"}]';
$array = json_decode($string,true);
print_r($array);
结果:
Array ( [0] => Array ( [quality] => default [mp4] => video2.mp4 ) )
现在,如果您有多种文件格式,则可以轻松获取索引mp4
,然后可以在循环内进行分组。