我正在寻找新网站的解决方案。我想从表中回显单个链接。
我的图片表中的示例:
http://picurelinke.pl,
http://picurelinke.pl,
http://picurelinke.pl,
我只想回显第一个链接。有人可以帮我吗?
答案 0 :(得分:0)
用逗号(,)对其进行分解,并获取其第一个元素。
$links = 'http://testurl.com,http://testurl.com,http://testurl.com';
$linksArray = explode(',', $links);
$firstLink = $linksArray[0];
echo $firstLink;
答案 1 :(得分:0)
假设您在ga('create', 'UA-111563164-2', 'auto');
ga('require', 'ec');
ga('ec:addImpression', { // Provide product details in an impressionFieldObject.
'id': 'trip-to-fairy-meadows-and-nanga-parbat-base-camp-by-directions-explore-with-us', // Product ID (string).
'name': 'TRIP TO FAIRY MEADOWS AND NANGA PARBAT BASE CAMP', // Product name (string).
'brand': 'DIRECTIONS - EXPLORE WITH US', // Product brand (string). // Product variant (string).
'category': 'Apparel/T-Shirts',
'variant': 'black',
'list': 'Search Results',
'position': 1
});
ga('ec:addImpression', {
'id': 'P67890',
'name': 'YouTube Organic T-Shirt',
'category': 'Apparel/T-Shirts',
'brand': 'YouTube',
'variant': 'gray',
'list': 'Search Results',
'position': 2
});
ga('send', 'pageview');
变量中有此列。因此,您可以执行以下操作。
$data