How to retrive a specific tag? #100
Answered
by
renanbr
littlebear0871
asked this question in
Q&A
-
HI there! I am trying to retrieve "doi" of each article, by using
Is any shortcut or method available to get certain tag? Thakn you very much! |
Beta Was this translation helpful? Give feedback.
Answered by
renanbr
Feb 16, 2021
Replies: 1 comment 1 reply
-
The warning is about the missing tag in at least one of the entries. To avoid this warning, you can either check if the tag is available before reading it ... $doi = $bibteim['doi'] ?? null; // PHP 7+ ... or add the FillMissingProcessor to the Listener in order to make sure this key is always available. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
renanbr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The warning is about the missing tag in at least one of the entries.
To avoid this warning, you can either check if the tag is available before reading it ...
... or add the FillMissingProcessor to the Listener in order to make sure this key is always available.