{"id":4659,"date":"2024-03-14T13:34:49","date_gmt":"2024-03-14T04:34:49","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/"},"modified":"2025-08-02T22:48:06","modified_gmt":"2025-08-02T13:48:06","slug":"perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/","title":{"rendered":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002"},"content":{"rendered":"<p>Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u63a5\u7d9a\u3057\u3066\u64cd\u4f5c\u3092\u884c\u3046\u306b\u306f\u901a\u5e38\u3001DBI\uff08\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\uff09\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u7c21\u5358\u306a\u4f8b\u3067\u3059\uff1a<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">use<\/span> DBI;\r\n\r\n<span class=\"hljs-keyword\">my<\/span> $db_name = <span class=\"hljs-string\">\"database_name\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $db_user = <span class=\"hljs-string\">\"username\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $db_pass = <span class=\"hljs-string\">\"password\"<\/span>;\r\n\r\n<span class=\"hljs-keyword\">my<\/span> $dsn = <span class=\"hljs-string\">\"DBI:mysql:$db_name\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $dbh = DBI-&gt;<span class=\"hljs-keyword\">connect<\/span>($dsn, $db_user, $db_pass) <span class=\"hljs-keyword\">or<\/span> <span class=\"hljs-keyword\">die<\/span> <span class=\"hljs-string\">\"Cannot connect to database: $DBI::errstr\"<\/span>;\r\n\r\n<span class=\"hljs-comment\"># \u6267\u884cSQL\u67e5\u8be2<\/span>\r\n<span class=\"hljs-keyword\">my<\/span> $sql = <span class=\"hljs-string\">\"SELECT * FROM table_name\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $sth = $dbh-&gt;prepare($sql);\r\n$sth-&gt;execute();\r\n\r\n<span class=\"hljs-comment\"># \u83b7\u53d6\u67e5\u8be2\u7ed3\u679c<\/span>\r\n<span class=\"hljs-keyword\">while<\/span> (<span class=\"hljs-keyword\">my<\/span> @row = $sth-&gt;fetchrow_array()) {\r\n    <span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-keyword\">join<\/span>(<span class=\"hljs-string\">\", \"<\/span>, @row) . <span class=\"hljs-string\">\"\\n\"<\/span>;\r\n}\r\n\r\n<span class=\"hljs-comment\"># \u5173\u95ed\u6570\u636e\u5e93\u8fde\u63a5<\/span>\r\n$sth-&gt;finish();\r\n$dbh-&gt;disconnect();\r\n<\/code><\/pre>\n<p>\u4e0a\u8a18\u306e\u4f8b\u3067\u306f\u3001\u307e\u305aDBI\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u63a5\u7d9a\u3092\u78ba\u7acb\u3057\u3001\u7c21\u5358\u306aSQL\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3066\u30af\u30a8\u30ea\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3057\u305f\u3002\u6700\u5f8c\u306b\u3001\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u63a5\u7d9a\u3092\u9589\u3058\u307e\u3057\u305f\u3002\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u63a5\u7d9a\u60c5\u5831\u3084SQL\u30af\u30a8\u30ea\u6587\u3092\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u63a5\u7d9a\u3057\u3066\u64cd\u4f5c\u3092\u884c\u3046\u306b\u306f\u901a\u5e38\u3001DBI\uff08\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\uff09\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u7c21\u5358\u306a\u4f8b\u3067\u3059\uff1a use DBI; my $db_name = &#8220;database_nam [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-4659","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"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>Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002 - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\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\/perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002\" \/>\n<meta property=\"og:description\" content=\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-14T04:34:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-02T13:48:06+00:00\" \/>\n<meta name=\"author\" content=\"\u7dbe\u4e43, \u4e00\u5e0c\" \/>\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=\"\u7dbe\u4e43, \u4e00\u5e0c\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\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\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/\",\"name\":\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-14T04:34:49+00:00\",\"dateModified\":\"2025-08-02T13:48:06+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/601389077b7f4e4ad6115428e3b73bff\"},\"description\":\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002\"}]},{\"@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\/601389077b7f4e4ad6115428e3b73bff\",\"name\":\"\u7dbe\u4e43, \u4e00\u5e0c\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2228fe98b71141214fb24fb1b5ae44f99bdfa0602bbd89b351f2acd49ece862d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2228fe98b71141214fb24fb1b5ae44f99bdfa0602bbd89b351f2acd49ece862d?s=96&d=mm&r=g\",\"caption\":\"\u7dbe\u4e43, \u4e00\u5e0c\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/ayanokazuki\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002 - Blog - Silicon Cloud","description":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","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\/perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\/","og_locale":"ja_JP","og_type":"article","og_title":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002","og_description":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-14T04:34:49+00:00","article_modified_time":"2025-08-02T13:48:06+00:00","author":"\u7dbe\u4e43, \u4e00\u5e0c","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u7dbe\u4e43, \u4e00\u5e0c","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"2\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/","name":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-14T04:34:49+00:00","dateModified":"2025-08-02T13:48:06+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/601389077b7f4e4ad6115428e3b73bff"},"description":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"Perl\u3067\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3078\u306e\u63a5\u7d9a\u3068\u64cd\u4f5c\u3092\u3069\u3046\u3084\u3063\u3066\u884c\u3046\u304b\u3002"}]},{"@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\/601389077b7f4e4ad6115428e3b73bff","name":"\u7dbe\u4e43, \u4e00\u5e0c","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2228fe98b71141214fb24fb1b5ae44f99bdfa0602bbd89b351f2acd49ece862d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2228fe98b71141214fb24fb1b5ae44f99bdfa0602bbd89b351f2acd49ece862d?s=96&d=mm&r=g","caption":"\u7dbe\u4e43, \u4e00\u5e0c"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/ayanokazuki\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8%e3%81%ae%e6%8e%a5%e7%b6%9a%e3%81%a8%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%a9%e3%81%86%e3%82%84%e3%81%a3%e3%81%a6%e8%a1%8c\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4659","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\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=4659"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4659\/revisions"}],"predecessor-version":[{"id":72222,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4659\/revisions\/72222"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=4659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=4659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=4659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}