Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Windows Azure > Windows Azure (Storage) and PHP Website > ตอนที่ 4 : How to use php Delete Blob การลบรายการไฟล์บน Blob



Clound SSD Virtual Server

ตอนที่ 4 : How to use php Delete Blob การลบรายการไฟล์บน Blob

ตอนที่ 4 : How to use php Delete Blob การลบรายการไฟล์บน Blob บทความนี้จะเป็นหัวข้อเกี่ยวกับการใช้ PHP เพื่อลบ Delete ค่าจาก Blob Storage ของ Windows Azure โดยในขั้นแรกจะแสดง List รายการของ Blob ออกมาซะก่อน จากนั้นสามารถที่จะเลือกรายการต่าง ๆ เพื่อลบข้อมูลออกได้

Blob Storage และ Azure PHP SDK

ข้อมูลที่อยู่ใน Blob ถูกจัดเก็บไว้ใน Container ชื่อว่า pictures

Blob Storage และ Azure PHP SDK

กรณีที่ดูผ่าน Azure Storage Explorer



Syntax for Delete Blob
$name = "win.jpg";
$blob = $blobRestProxy->deleteBlob("pictures",$name);

ในตัวอย่างนี้จะมีอยู่ 2 ขั้นตอนคือ แสดงรายการ Blob จาก Storage และสามารถเลือกรายการที่จะลบได้

phpAzureBlob1.php ไฟล์สำหรับแสดงรายการของ Blob
<?php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

// Create blob REST proxy.
$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);


try {
    // List blobs.
    $blob_list = $blobRestProxy->listBlobs("pictures");
    $blobs = $blob_list->getBlobs();

	echo "<table width=\"400\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">";
    foreach($blobs as $blob)
    {
		echo "
		  <tr>
			<td width=\"100\">".$blob->getName()."</td>
			<td width=\"200\"><img src='".$blob->getUrl()."'></td>
			<td width=\"100\"><a href=\"phpAzureBlob2.php?blobName=".$blob->getName()."\">Delete</a></td>
		  </tr> ";
    }
	echo "</table>";
}
catch(ServiceException $e){
    // Handle exception based on error codes and messages.
    // Error codes and messages are here: 
    // http://msdn.microsoft.com/en-us/library/windowsazure/dd179439.aspx
    $code = $e->getCode();
    $error_message = $e->getMessage();
    echo $code.": ".$error_message."<br />";
}

$blobRestProxy  = null;
?>









phpAzureBlob2.php ไฟล์ที่จะลบ Delete Blob
<?php
require_once "WindowsAzure/WindowsAzure.php"; 
require_once 'PHPUnit\autoload.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;

// Create Connection String
$connectionString = "DefaultEndpointsProtocol=http;AccountName=[yourAccount];AccountKey=[yourKey]";

// Create blob REST proxy.
$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);

try {

    // Get blob.
	$name = $_GET["blobName"];
    $blob = $blobRestProxy->deleteBlob("pictures",$name);
		

}
catch(ServiceException $e){
    // Handle exception based on error codes and messages.
    // Error codes and messages are here: 
    // http://msdn.microsoft.com/en-us/library/windowsazure/dd179439.aspx
    $code = $e->getCode();
    $error_message = $e->getMessage();
    echo $code.": ".$error_message."<br />";
}


$blobRestProxy  = null;
?>

Screenshot

Blob Storage และ Azure PHP SDK

แสดงรายการ Blob และเลือกรายการที่จะ Delete ลบ

Blob Storage และ Azure PHP SDK

รายการถูกลบเรียบร้อยแล้ว และเมื่อไปดูที่ Blob Storage บน Windows Azure ก็จะถูก Delete ลบออกไปด้วย


บทความที่เกี่ยวข้อง


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-10-01 16:07:35 / 2017-03-24 13:22:23
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จักกับ Blob Storage และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

 
ตอนที่ 2 : How to use php Upload file to Blob การอัพโหลดไฟล์ลงใน Blob
Rating :

 
ตอนที่ 3 : How to use php List the Blobs การแสดงรายการไฟล์จาก Blob
Rating :

 
ตอนที่ 5 : รู้จักกับ Table Storage Service และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

 
ตอนที่ 6 : How to use php Add Entity to a Table Storage - บันทึกข้อมูลลงตาราง
Rating :

 
ตอนที่ 7 : How to use php Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง
Rating :

 
ตอนที่ 8 : How to use php Update Entity in Table Storage - แก้ไขข้อมูลในตาราง
Rating :

 
ตอนที่ 9 : How to use php Delete Entity in Table Storage - ลบข้อมูลในตาราง
Rating :

 
ตอนที่ 10 : รู้จักกับ Queue Storage และ Azure PHP SDK การใช้งานเบื้องต้น
Rating :

 
ตอนที่ 11 : How to use php Create a message Queue - สร้างคิวใหม่
Rating :

 
ตอนที่ 12 : How to use php Peek at the next message - อ่านคิวถัดไป
Rating :

 
ตอนที่ 13 : How to use php De-queue the next messag - ขยับไปยังคิวถัดไป
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่