sdfsdsf】的更多相关文章

1 $('.advert-title').each(function(){ 2 var TXTlength = $(this).text().length; // 当前文本的长度 3 if(TXTlength > 20){ 4 var limitTXT = ''; 5 limitTXT = $(this).text().substring(0,23)+'....'; 6 $(this).html(limitTXT) 7 } 8 })…
工作需要,我负责收集服务器数据,然后定时向中心服务器发送.我看到了接口信息,需要设置heads头信息,需要发送数据,且是post方式. 这里就用到了curl //发送post请求 function request_post($url = '', $post_data = array()) { if (empty($url) || empty($post_data)) { return false; } $o = ""; foreach ( $post_data as $k =>…