{"id":111266,"date":"2024-03-22T18:16:18","date_gmt":"2024-03-22T09:16:18","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/"},"modified":"2024-04-05T16:43:44","modified_gmt":"2024-04-05T07:43:44","slug":"php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/","title":{"rendered":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f?"},"content":{"rendered":"<p>PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u4ee5\u4e0b\u306b\u4e00\u822c\u7684\u306a\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u793a\u3057\u307e\u3059\u3002<\/p>\n<ol>\n<li>PHP\u306eIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\uff1aPHP\u3067\u306fIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u30e1\u30fc\u30eb\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057\u305f\u308a\u3001\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u3063\u305f\u308a\u3001\u30e1\u30fc\u30eb\u306b\u95a2\u9023\u3057\u305f\u64cd\u4f5c\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u305d\u308c\u3089\u3092\u5229\u7528\u3067\u304d\u307e\u3059\u3002IMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\u306b\u306f\u3001PHP\u306e\u8a2d\u5b9a\u3067IMAP\u62e1\u5f35\u6a5f\u80fd\u3092\u6709\u52b9\u306b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u969b\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\uff1a<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-variable\">$connection<\/span> = <span class=\"hljs-title function_ invoke__\">imap_open<\/span>(<span class=\"hljs-string\">\"{mail.example.com:993\/ssl}\"<\/span>, <span class=\"hljs-string\">\"username\"<\/span>, <span class=\"hljs-string\">\"password\"<\/span>);\r\n<span class=\"hljs-variable\">$mails<\/span> = <span class=\"hljs-title function_ invoke__\">imap_search<\/span>(<span class=\"hljs-variable\">$connection<\/span>, <span class=\"hljs-string\">\"ALL\"<\/span>);\r\n\r\n<span class=\"hljs-keyword\">foreach<\/span> (<span class=\"hljs-variable\">$mails<\/span> <span class=\"hljs-keyword\">as<\/span> <span class=\"hljs-variable\">$mailId<\/span>) {\r\n    <span class=\"hljs-variable\">$header<\/span> = <span class=\"hljs-title function_ invoke__\">imap_headerinfo<\/span>(<span class=\"hljs-variable\">$connection<\/span>, <span class=\"hljs-variable\">$mailId<\/span>);\r\n    <span class=\"hljs-variable\">$subject<\/span> = <span class=\"hljs-variable\">$header<\/span>-&gt;subject;\r\n    <span class=\"hljs-variable\">$from<\/span> = <span class=\"hljs-variable\">$header<\/span>-&gt;fromaddress;\r\n    <span class=\"hljs-comment\">\/\/ \u5176\u4ed6\u64cd\u4f5c...<\/span>\r\n}\r\n\r\n<span class=\"hljs-title function_ invoke__\">imap_close<\/span>(<span class=\"hljs-variable\">$connection<\/span>);\r\n<\/code><\/pre>\n<ol>\n<li>POP3 \u306f\u3001PHP \u304b\u3089 POP3 \u30e1\u30fc\u30eb\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3067\u304d\u308b\u3001\u3082\u3046 1 \u3064\u306e\u4e00\u822c\u7684\u306a\u30e1\u30fc\u30eb\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3059\u3002PHP \u306b\u306f\u3001POP3 \u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3082\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059\u3002PHP \u69cb\u6210\u3067 POP3 \u62e1\u5f35\u3092\u6709\u52b9\u306b\u3059\u308b\u3053\u3068\u3067\u3001POP3 \u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002\u4ee5\u4e0b\u306b\u3001POP3 \u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u305f\u3081\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u793a\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-variable\">$connection<\/span> = <span class=\"hljs-title function_ invoke__\">pop3_open<\/span>(<span class=\"hljs-string\">\"mail.example.com\"<\/span>, <span class=\"hljs-string\">\"username\"<\/span>, <span class=\"hljs-string\">\"password\"<\/span>);\r\n<span class=\"hljs-variable\">$messages<\/span> = <span class=\"hljs-title function_ invoke__\">pop3_list<\/span>(<span class=\"hljs-variable\">$connection<\/span>);\r\n\r\n<span class=\"hljs-keyword\">foreach<\/span> (<span class=\"hljs-variable\">$messages<\/span> <span class=\"hljs-keyword\">as<\/span> <span class=\"hljs-variable\">$message<\/span>) {\r\n    <span class=\"hljs-variable\">$header<\/span> = <span class=\"hljs-title function_ invoke__\">pop3_get_header<\/span>(<span class=\"hljs-variable\">$connection<\/span>, <span class=\"hljs-variable\">$message<\/span>);\r\n    <span class=\"hljs-variable\">$subject<\/span> = <span class=\"hljs-variable\">$header<\/span>[<span class=\"hljs-string\">\"subject\"<\/span>];\r\n    <span class=\"hljs-variable\">$from<\/span> = <span class=\"hljs-variable\">$header<\/span>[<span class=\"hljs-string\">\"from\"<\/span>];\r\n    <span class=\"hljs-comment\">\/\/ \u5176\u4ed6\u64cd\u4f5c...<\/span>\r\n}\r\n\r\n<span class=\"hljs-title function_ invoke__\">pop3_close<\/span>(<span class=\"hljs-variable\">$connection<\/span>);\r\n<\/code><\/pre>\n<ol>\n<li>PHPMailer \u3084 SwiftMailer \u306a\u3069\u306e PHP \u6a19\u6e96\u306e\u30e1\u30fc\u30eb\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u4ed6\u306b\u3001\u30e1\u30fc\u30eb\u51e6\u7406\u306e\u305f\u3081\u306e\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u30e9\u30a4\u30d6\u30e9\u30ea\u3082\u6570\u591a\u304f\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u3089\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u30e1\u30fc\u30eb\u51e6\u7406\u306e\u591a\u304f\u306e\u6a5f\u80fd\u3092\u30ab\u30d7\u30bb\u30eb\u5316\u3057\u3001\u7c21\u4fbf\u3067\u4f7f\u3044\u3084\u3059\u3044\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\u3001\u30e1\u30fc\u30eb\u306e\u8aad\u307f\u8fbc\u307f\u3092\u5bb9\u6613\u306b\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306f PHPMailer \u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u30b3\u30fc\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">require<\/span> <span class=\"hljs-string\">'PHPMailer\/src\/PHPMailer.php'<\/span>;\r\n\r\n<span class=\"hljs-variable\">$mail<\/span> = <span class=\"hljs-keyword\">new<\/span> <span class=\"hljs-title class_\">PHPMailer\\PHPMailer\\PHPMailer<\/span>();\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">isPOP3<\/span>();\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;Host = <span class=\"hljs-string\">'mail.example.com'<\/span>;\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;Port = <span class=\"hljs-number\">110<\/span>;\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;Username = <span class=\"hljs-string\">'username'<\/span>;\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;Password = <span class=\"hljs-string\">'password'<\/span>;\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">setFrom<\/span>(<span class=\"hljs-string\">'from@example.com'<\/span>);\r\n<span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">addAddress<\/span>(<span class=\"hljs-string\">'to@example.com'<\/span>);\r\n\r\n<span class=\"hljs-keyword\">if<\/span> (<span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">connect<\/span>()) {\r\n    <span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">login<\/span>();\r\n\r\n    <span class=\"hljs-variable\">$mails<\/span> = <span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">listMessages<\/span>();\r\n\r\n    <span class=\"hljs-keyword\">foreach<\/span> (<span class=\"hljs-variable\">$mails<\/span> <span class=\"hljs-keyword\">as<\/span> <span class=\"hljs-variable\">$mail<\/span>) {\r\n        <span class=\"hljs-variable\">$subject<\/span> = <span class=\"hljs-variable\">$mail<\/span>-&gt;subject;\r\n        <span class=\"hljs-variable\">$from<\/span> = <span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-keyword\">from<\/span>;\r\n        <span class=\"hljs-comment\">\/\/ \u5176\u4ed6\u64cd\u4f5c...<\/span>\r\n    }\r\n\r\n    <span class=\"hljs-variable\">$mail<\/span>-&gt;<span class=\"hljs-title function_ invoke__\">disconnect<\/span>();\r\n}\r\n<\/code><\/pre>\n<p>\u30e1\u30fc\u30eb\u3092\u8aad\u3080\u305f\u3081\u306e\u4e00\u822c\u7684\u306a\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u6319\u3052\u307e\u3057\u305f\u304c\u3001\u6700\u9069\u306a\u65b9\u6cd5\u306f\u3054\u81ea\u8eab\u306e\u3054\u8981\u671b\u3084\u74b0\u5883\u8a2d\u5b9a\u306b\u3088\u308a\u7570\u306a\u308a\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u4ee5\u4e0b\u306b\u4e00\u822c\u7684\u306a\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u793a\u3057\u307e\u3059\u3002 PHP\u306eIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\uff1aPHP\u3067\u306fIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u30e1\u30fc\u30eb\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057\u305f\u308a\u3001\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u3063\u305f [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-111266","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f? - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/php\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f?\" \/>\n<meta property=\"og:description\" content=\"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u4ee5\u4e0b\u306b\u4e00\u822c\u7684\u306a\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u793a\u3057\u307e\u3059\u3002 PHP\u306eIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\uff1aPHP\u3067\u306fIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u30e1\u30fc\u30eb\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057\u305f\u308a\u3001\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u3063\u305f [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/php\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-22T09:16:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-05T07:43:44+00:00\" \/>\n<meta name=\"author\" content=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/\",\"name\":\"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f? - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-22T09:16:18+00:00\",\"dateModified\":\"2024-04-05T07:43:44+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\",\"name\":\"\u82bd\u4f9d, \u96e8\u591c\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"caption\":\"\u82bd\u4f9d, \u96e8\u591c\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f? - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/php\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\/","og_locale":"ja_JP","og_type":"article","og_title":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f?","og_description":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u4ee5\u4e0b\u306b\u4e00\u822c\u7684\u306a\u65b9\u6cd5\u3092\u3044\u304f\u3064\u304b\u793a\u3057\u307e\u3059\u3002 PHP\u306eIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\uff1aPHP\u3067\u306fIMAP\u95a2\u6570\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u30e1\u30fc\u30eb\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057\u305f\u308a\u3001\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u3063\u305f [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/php\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-22T09:16:18+00:00","article_modified_time":"2024-04-05T07:43:44+00:00","author":"\u82bd\u4f9d, \u96e8\u591c","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u82bd\u4f9d, \u96e8\u591c","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/","name":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f? - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-22T09:16:18+00:00","dateModified":"2024-04-05T07:43:44+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP\u3067\u30e1\u30fc\u30eb\u3092\u8aad\u307f\u53d6\u308b\u65b9\u6cd5\u306f?"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27","name":"\u82bd\u4f9d, \u96e8\u591c","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","caption":"\u82bd\u4f9d, \u96e8\u591c"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/php%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/111266","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=111266"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/111266\/revisions"}],"predecessor-version":[{"id":322178,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/111266\/revisions\/322178"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=111266"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=111266"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=111266"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}