com_get_active_object

(PHP 5, PHP 7, PHP 8)

com_get_active_objectReturns a handle to an already running instance of a COM object

Beschreibung

com_get_active_object(string $prog_id, ?int $codepage = null): variant

com_get_active_object() is similar to creating a new instance of a com object, except that it will only return an object to your script if the object is already running. OLE applications use something known as the "Running Object Table" to allow well-known applications to be launched only once; this function exposes the COM library function GetActiveObject() to get a handle on a running instance.

Parameter-Liste

prog_id

prog_id must be either the ProgID or CLSID for the object that you want to access (for example Word.Application).

codepage

Acts in precisely the same way that it does for the com class.

Rückgabewerte

If the requested object is running, it will be returned to your script just like any other COM object.

Fehler/Exceptions

There are a variety of reasons why this function might fail, the most common being that the object is not already running. In that situation, the exception error code will be MK_E_UNAVAILABLE; you can use the getCode method of the exception object to check the exception code.

Changelog

Version Beschreibung
8.0.0 codepage is nullable now.

Anmerkungen

Warnung

Using com_get_active_object() in a web server context is not always a smart idea. Most COM/OLE applications are not designed to handle more than one client concurrently, even (or especially!) Microsoft Office. You should read » Considerations for Server-Side Automation of Office for more information on the general issues involved.

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

Was genau bedeutet "Vibe Coding"? Ein tiefgehender Blick für Entwickler

In der Welt der Softwareentwicklung gibt es unzählige Wege, wie man an ein Projekt herangeht. Manche schwören auf strikte Planung, andere auf bewährte Algorithmen und wieder andere lassen sich von etwas ganz anderem leiten: ihrem Gefühl. ...

admin

Autor : admin
Kategorie: Software & Web-Development

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Datumausgabe *HEUL*

Um das Datum in deinem Gästebuch von yyyy-mm-dd in das Format dd.mm.yyyy zu ändern, kannst du die DateTime-Klasse verwenden, um das Datum entspr ...

Geschrieben von thomast am 13.11.2025 04:32:06
Forum: SQL / Datenbanken
Löschen nach einen gewissen Datum in einer TXT-Datenbank

Hier $datenbank = anzeigen.php"; steigt PHP doch mit einem Fehler aus. Außerdem ist es nicht gerade sinnvoll, einer Datendatei die Endung .php z ...

Geschrieben von scatello am 12.11.2025 19:49:12
Forum: Off-Topic Diskussionen
Löschen nach einen gewissen Datum in einer TXT-Datenbank

Hallo php Gemeinde, ich bin ein Anfänger und benötige eure Hilfe. Ich habe eine kleine TXT-Datenbank mit Anzeigen die nach einen festgelegten Ab ...

Geschrieben von maiky am 12.11.2025 11:27:04
Forum: Off-Topic Diskussionen
Wie kann ich eine effiziente Batch-Verarbeitung in PHP mit PDO umsetzen?

Guten Morgen roseblack, Schau dir mal die Statements "LIMIT" sowie "OFFSET" an. Damit kannst du Menge der zurückgegebenen Records bestimmen. htt ...

Geschrieben von ninadelgado am 12.11.2025 11:08:46
Forum: PHP Developer Forum