{"id":4707,"date":"2024-03-14T13:41:06","date_gmt":"2024-03-14T04:41:06","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/"},"modified":"2025-08-02T23:08:21","modified_gmt":"2025-08-02T14:08:21","slug":"perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/","title":{"rendered":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b"},"content":{"rendered":"<p>\u4e00\u822c\u306b\u3001Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u6271\u3046\u969b\u306b\u306f\u3001Crypt::OpenSSL\u30e2\u30b8\u30e5\u30fc\u30eb\u304c\u5229\u7528\u3055\u308c\u307e\u3059\u3002\u3053\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306b\u306f\u3001\u30c7\u30fc\u30bf\u306e\u6697\u53f7\u5316\u3084\u8907\u5408\u3001\u30c7\u30b8\u30bf\u30eb\u7f72\u540d\u306e\u751f\u6210\u3084\u691c\u8a3c\u306a\u3069\u306b\u4f7f\u7528\u3067\u304d\u308b\u6697\u53f7\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3084\u30cf\u30c3\u30b7\u30e5\u95a2\u6570\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u3001\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u4fdd\u8a3c\u3059\u308b\u305f\u3081\u306b\u3001Perl\u306eDigest\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30fc\u30bf\u306e\u30cf\u30c3\u30b7\u30e5\u5024\u3092\u8a08\u7b97\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>Crypt::OpenSSL\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066AES\u6697\u53f7\u5316\u3068\u5fa9\u53f7\u5316\u3092\u884c\u3046\u4f8b\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">use<\/span> Crypt::OpenSSL::AES;\r\n\r\n<span class=\"hljs-keyword\">my<\/span> $key = <span class=\"hljs-string\">\"mysecretkey\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $cipher = Crypt::OpenSSL::AES-&gt;new($key);\r\n\r\n<span class=\"hljs-keyword\">my<\/span> $plaintext = <span class=\"hljs-string\">\"Hello, world!\"<\/span>;\r\n<span class=\"hljs-keyword\">my<\/span> $ciphertext = $cipher-&gt;encrypt($plaintext);\r\n\r\n<span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"Ciphertext: $ciphertext\\n\"<\/span>;\r\n\r\n<span class=\"hljs-keyword\">my<\/span> $decrypted = $cipher-&gt;decrypt($ciphertext);\r\n<span class=\"hljs-keyword\">print<\/span> <span class=\"hljs-string\">\"Decrypted: $decrypted\\n\"<\/span>;\r\n<\/code><\/pre>\n<p>\u5b9f\u969b\u306e\u9069\u7528\u306b\u304a\u3044\u3066\u306f\u3001\u5177\u4f53\u7684\u306a\u30cb\u30fc\u30ba\u306b\u57fa\u3065\u3044\u3066\u9069\u5207\u306a\u6697\u53f7\u5316\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3068\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u9078\u629e\u3057\u3001\u9375\u306e\u5b89\u5168\u6027\u3092\u78ba\u4fdd\u3059\u308b\u3053\u3068\u304c\u91cd\u8981\u3067\u3059\u3002\u60aa\u610f\u3092\u6301\u3063\u3066\u9375\u3092\u5165\u624b\u3055\u308c\u308b\u3053\u3068\u3092\u9632\u3050\u305f\u3081\u306b\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059\u3002\u3055\u3089\u306b\u3001SSL\/TLS\u30d7\u30ed\u30c8\u30b3\u30eb\u3001\u30c7\u30b8\u30bf\u30eb\u8a3c\u660e\u66f8\u306a\u3069\u306e\u4ed6\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30e1\u30ab\u30cb\u30ba\u30e0\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u3067\u3001\u30b7\u30b9\u30c6\u30e0\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u5411\u4e0a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u822c\u306b\u3001Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u6271\u3046\u969b\u306b\u306f\u3001Crypt::OpenSSL\u30e2\u30b8\u30e5\u30fc\u30eb\u304c\u5229\u7528\u3055\u308c\u307e\u3059\u3002\u3053\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306b\u306f\u3001\u30c7\u30fc\u30bf\u306e\u6697\u53f7\u5316\u3084\u8907\u5408\u3001\u30c7\u30b8\u30bf\u30eb\u7f72\u540d\u306e\u751f\u6210\u3084\u691c\u8a3c\u306a\u3069\u306b\u4f7f\u7528\u3067\u304d\u308b\u6697\u53f7\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3084\u30cf\u30c3\u30b7\u30e5\u95a2\u6570\u304c [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[19,26],"class_list":["post-4707","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-19","tag-26"],"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\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\" \/>\n<meta property=\"og:description\" content=\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-14T04:41:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-02T14:08:21+00:00\" \/>\n<meta name=\"author\" content=\"\u967d, \u5411\u5b87\" \/>\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=\"\u967d, \u5411\u5b87\" \/>\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%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/\",\"name\":\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-14T04:41:06+00:00\",\"dateModified\":\"2025-08-02T14:08:21+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c\"},\"description\":\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\"}]},{\"@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\/4aef6196128551a0f5d66db46c42866c\",\"name\":\"\u967d, \u5411\u5b87\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"caption\":\"\u967d, \u5411\u5b87\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b - Blog - Silicon Cloud","description":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\/","og_locale":"ja_JP","og_type":"article","og_title":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b","og_description":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-14T04:41:06+00:00","article_modified_time":"2025-08-02T14:08:21+00:00","author":"\u967d, \u5411\u5b87","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u967d, \u5411\u5b87","\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%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/","name":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-14T04:41:06+00:00","dateModified":"2025-08-02T14:08:21+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c"},"description":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\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%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"Perl\u3067\u6697\u53f7\u5316\u3068\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u306e\u304b"}]},{"@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\/4aef6196128551a0f5d66db46c42866c","name":"\u967d, \u5411\u5b87","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","caption":"\u967d, \u5411\u5b87"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/perl%e3%81%a7%e6%9a%97%e5%8f%b7%e5%8c%96%e3%81%a8%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3%e3%82%92%e3%81%a9%e3%81%ae%e3%82%88%e3%81%86%e3%81%ab%e6%89%b1%e3%81%86%e3%81%ae%e3%81%8b\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4707","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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=4707"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4707\/revisions"}],"predecessor-version":[{"id":72270,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/4707\/revisions\/72270"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=4707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=4707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=4707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}