我试图在我的服务器上安装ffmpeg.我没有名字5.
当我尝试安装libfdk_aac时,我收到以下错误
` autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
Makefile.am:31: Libtool library used but `LIBTOOL' is undefined
Makefile.am:31:
Makefile.am:31: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
Makefile.am:31: to `configure.ac' and run `aclocal' and `autoconf' again.
Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac' …Run Code Online (Sandbox Code Playgroud) 我有一张带有几个标记的传单地图.
每个标记都有类似的html
<img class="leaflet-marker-icon leaflet-clickable leaflet-zoom-animated" src="leaflet/dist/images/marker-icon.png" style="margin-left: -12px; margin-top: -41px; width: 25px; height: 41px; transform: translate(435px, 200px); z-index: 200;" title="location_1">
Run Code Online (Sandbox Code Playgroud)
单击标记时,弹出窗口将在标记上方打开.
我想要做的是在地图外添加与每个标记相关的链接.
每个标记都具有唯一的标题.所以我可以创建一个html链接列表,标题为标识符,如
<a class="location_1">location 1</a>
<a class="location_2">location 2</a>
Run Code Online (Sandbox Code Playgroud)
然后将这些链接绑定到传单映射中的相应标记?
我怎样才能做到最好?
嗨,我有一个像下面的数组.
$arr = Array ( [My_name] => Sam [My_location] => United_Kingdom [My_id] => 1 );
Run Code Online (Sandbox Code Playgroud)
我试图改变密钥
My_name, My_Location, My_id
Run Code Online (Sandbox Code Playgroud)
至
Your_name, Your_Location, Your_id
Run Code Online (Sandbox Code Playgroud)
所以最终的数组看起来像
Array ( [Your_name] => Sam [Your_location] => United_Kingdom [Your_id] => 1 );
Run Code Online (Sandbox Code Playgroud)
我希望像str_replace这样的东西能起作用
$arrnew = str_replace("My","Your",$arr);
Run Code Online (Sandbox Code Playgroud)
但这只是将"我的"改为"你的",如果"我的"是一个值,而不是一个键.
那我该怎么改变钥匙呢?
谢谢你的帮助.
我使用foreach如下
foreach($album as $a) {
$string .= $a['value'].', ';
}
echo $string;
Run Code Online (Sandbox Code Playgroud)
返回类似的东西
1, 2, 3,
Run Code Online (Sandbox Code Playgroud)
等等
现在如何从最后一个循环中删除.
所以$ string返回1,2,3
我使用以下代码输出数组
$values = array();
foreach ($album as $a){
$values[] = $a['value'];
}
$string = implode(' or ', $values);
}
Run Code Online (Sandbox Code Playgroud)
返回
1 or 2 or 3
Run Code Online (Sandbox Code Playgroud)
现在我怎么能把每个值都放到"",所以它看起来像
"1" or "2" or "3"
Run Code Online (Sandbox Code Playgroud)
谢谢你的帮助