Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PHP ActiveX Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(PHP ActiveX) PC/SC Wait for Smart Card Status Change (Inserted, Removed from Reader, etc.)

See more SCard Examples

Demonstrates how to synchronously wait for a status change, such as for a smart card to be inserted into a reader, or removed from a reader.

Note: This functionality was introduced in Chilkat v9.5.0.87.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Note: The php_com_dotnet.dll may need to be enabled inside of php.ini.

<?php

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$scard = new COM("Chilkat_9_5_0.SCard");

// First establish a context to the PC/SC Resource Manager
$success = $scard->EstablishContext('user');
if ($success == 0) {
    print $scard->LastErrorText . "\n";
    exit;
}

// First we'll examine the state of all connected readers to see which have smartcards already inserted..
// Get JSON containing information about the smartcards currently inserted into readers.
// This also includes information about USB security tokens.
$json = new COM("Chilkat_9_5_0.JsonObject");
$success = $scard->FindSmartcards($json);
if ($success == 0) {
    print $scard->LastErrorText . "\n";
    exit;
}

// When writing this example, I have 3 smart card readers plugged into my system.
// One of them has a smart card inserted.
// Here's the JSON returned by FindSmartcards...

// {
//   "reader": [
//     {
//       "name": "Alcor Micro USB Smart Card Reader 0",
//       "state": "empty"
//     },
//     {
//       "name": "Generic Smart Card Reader Interface 0",
//       "state": "present",
//       "vendorName": "Generic",
//       "serialNumber": "3230303730383138303030303030303030",
//       "systemName": "Generic Smart Card Reader Interface 0",
//       "card": {
//         "atr": "3BFC180000813180459067464A00641606F2727E00E0",
//         "windows": {
//           "miniDriver": "tagliov70px.dll",
//           "cryptoProvider": "Microsoft Base Smart Card Crypto Provider",
//           "keyStorageProvider": "Microsoft Smart Card Key Storage Provider"
//         }
//       }
//     },
//     {
//       "name": "SCM Microsystems Inc. SCR33x USB Smart Card Reader 0",
//       "state": "empty"
//     }
//   ]
// }

$json->EmitCompact = 0;
print $json->emit() . "\n";
print ' ' . "\n";

// We can iterate over the JSON to find the readers with a smart card already inserted..

$sbState = new COM("Chilkat_9_5_0.StringBuilder");

$i = 0;
$count_i = $json->SizeOfArray('reader');
while ($i < $count_i) {
    $json->I = $i;
    $name = $json->stringOf('reader[i].name');

    $sbState->Clear();
    $json->StringOfSb('reader[i].state',$sbState);

    if ($sbState->Contains('present',1) == 1) {
        print $name . ' has a smart card inserted.' . "\n";
    }
    else {
        print $name . ' does not have a smart card inserted.' . "\n";
    }

    $i = $i + 1;
}

print ' ' . "\n";

// Now let's begin the code to wait for a change (where a smart card gets inserted or removed)

// Get the list of all readers.
$stReaders = new COM("Chilkat_9_5_0.StringTable");
$success = $scard->ListReaders($stReaders);
if ($success == 0) {
    print $scard->LastErrorText . "\n";
    exit;
}

// Show the reader names..
$numReaders = $stReaders->Count;
$i = 0;
while ($i < $numReaders) {
    print $i . ': ' . $stReaders->stringAt($i) . "\n";
    $i = $i + 1;
}

// Sample output from the above loop.
// 0: Alcor Micro USB Smart Card Reader 0
// 1: Generic Smart Card Reader Interface 0
// 2: SCM Microsystems Inc. SCR33x USB Smart Card Reader 0
// 

// Synchronously wait 30 seconds for a card to be inserted or removed from any of the above readers.
$json2 = new COM("Chilkat_9_5_0.JsonObject");
$success = $scard->GetStatusChange(30000,$stReaders,$json2);
if ($success == 0) {
    print $scard->LastErrorText . "\n";
    exit;
}

print ' ' . "\n";

// Let's see what happened...
$json2->EmitCompact = 0;
print $json2->emit() . "\n";
print ' ' . "\n";

// This is what json2 contains.
// A card was inserted into the reader named "SCM Microsystems Inc. SCR33x USB Smart Card Reader 0"
// The "numChanged" indicates that one reader's status changed.  
// The "changed":true indicates the reader that changed.   The state is now "present".

// {
//   "numChanged": 1,
//   "reader": [
//     {
//       "name": "Alcor Micro USB Smart Card Reader 0",
//       "changed": false,
//       "state": "empty"
//     },
//     {
//       "name": "Generic Smart Card Reader Interface 0",
//       "changed": false,
//       "state": "present",
//       "atr": "3BFC180000813180459067464A00641606F2727E00E0"
//     },
//     {
//       "name": "SCM Microsystems Inc. SCR33x USB Smart Card Reader 0",
//       "changed": true,
//       "state": "present",
//       "atr": "3BDF96FF8131FE455A018048494443313158587300011B09"
//     }
//   ]
// }

// Find the reader that changed...

$numChanged = $json2->IntOf('numChanged');
print 'number of readers with a changed state: ' . $numChanged . "\n";

$i = 0;
$count_i = $json2->SizeOfArray('reader');
while ($i < $count_i) {
    $json2->I = $i;
    $changed = $json2->BoolOf('reader[i].changed');
    if ($changed == 1) {
        $name = $json2->stringOf('reader[i].name');
        $state = $json2->stringOf('reader[i].state');

        print 'Changed: ' . "\n";
        print '    reader name: ' . $name . "\n";
        print '    new state: ' . $state . "\n";

        // If a card is now in this reader, we should have the ATR of the card..
        if ($json2->HasMember('reader[i].atr') == 1) {
            $atr = $json2->stringOf('reader[i].atr');
            print '    ATR of card inserted into this reader: ' . $atr . "\n";
        }

    }

    $i = $i + 1;
}

// The output from the above loop:

// number of readers with a changed state: 1
// Changed: 
//     reader name: SCM Microsystems Inc. SCR33x USB Smart Card Reader 0
//     new state: present
//     ATR of card inserted into this reader: 3BDF96FF8131FE455A018048494443313158587300011B09

// Applications should always release the context when finished.
$success = $scard->ReleaseContext();
if ($success == 0) {
    print $scard->LastErrorText . "\n";
}


?>

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.