php 从URL获取附件ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从URL获取附件ID相关的知识,希望对你有一定的参考价值。

// retrieves the attachment ID from the file URL
function ll_get_image_id($image_url) {
  global $wpdb;

  // If testing locally
  $image_url = str_replace('//localhost:3000', site_url(), $image_url);

  $attachment = $wpdb->get_col($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE guid='%s';", $image_url ));
  return $attachment[0];
}

以上是关于php 从URL获取附件ID的主要内容,如果未能解决你的问题,请参考以下文章

php 从其URL获取图像的WordPress附件ID

从 php 网站解码附件 url

使用 PHP 从 URL 获取 YouTube 视频 ID

php PHP函数从URL获取youtube ID

141 - 任务 15

如何保护从云服务获取的附件 URL